home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
faq
/
kjvcbibl.lha
/
cbible
/
rexx
/
changeall.thnkr
< prev
next >
Wrap
Text File
|
1991-12-05
|
779b
|
26 lines
/******************************************************************
* *
* Macro to change all occurrences of a string to a second string *
* *
******************************************************************/
trace off
options results
parse arg source destination .
if source = '' then do
'input Enter search string'
source=result
end
if result = '' then exit 1 /* changes mind */
if destination = '' then do
'input Enter replacement string'
destination=result
end
'search first' source
if rc = 0 then do
'search replace' destination
do while rc=0
'search next'
if rc=0 then 'search replace' destination
end
end